type compress/flate.compressor

28 uses

	compress/flate (current package)
		deflate.go#L80: type compressor struct {
		deflate.go#L87: 	fill      func(*compressor, []byte) int // copy data to window
		deflate.go#L88: 	step      func(*compressor)             // process window
		deflate.go#L123: func (d *compressor) fillDeflate(b []byte) int {
		deflate.go#L163: func (d *compressor) writeBlock(tokens []token, index int) error {
		deflate.go#L180: func (d *compressor) fillWindow(b []byte) {
		deflate.go#L233: func (d *compressor) findMatch(pos int, prevHead int, prevLength int, lookahead int) (length, offset int, ok bool) {
		deflate.go#L285: func (d *compressor) writeStoredBlock(buf []byte) error {
		deflate.go#L334: func (d *compressor) encSpeed() {
		deflate.go#L371: func (d *compressor) initDeflate() {
		deflate.go#L384: func (d *compressor) deflate() {
		deflate.go#L523: func (d *compressor) fillStore(b []byte) int {
		deflate.go#L529: func (d *compressor) store() {
		deflate.go#L539: func (d *compressor) storeHuff() {
		deflate.go#L548: func (d *compressor) write(b []byte) (n int, err error) {
		deflate.go#L563: func (d *compressor) syncFlush() error {
		deflate.go#L578: func (d *compressor) init(w io.Writer, level int) (err error) {
		deflate.go#L584: 		d.fill = (*compressor).fillStore
		deflate.go#L585: 		d.step = (*compressor).store
		deflate.go#L588: 		d.fill = (*compressor).fillStore
		deflate.go#L589: 		d.step = (*compressor).storeHuff
		deflate.go#L593: 		d.fill = (*compressor).fillStore
		deflate.go#L594: 		d.step = (*compressor).encSpeed
		deflate.go#L603: 		d.fill = (*compressor).fillDeflate
		deflate.go#L604: 		d.step = (*compressor).deflate
		deflate.go#L611: func (d *compressor) reset(w io.Writer) {
		deflate.go#L641: func (d *compressor) close() error {
		deflate.go#L705: 	d    compressor